Animation

data class Animation(id: String, name: String, pausedState: Boolean, playState: String, playbackRate: Double, startTime: Double, currentTime: Double, type: String, source: AnimationEffect?, cssId: String?)

Animation instance.

Constructors

Animation
Link copied to clipboard
fun Animation(id: String, name: String, pausedState: Boolean, playState: String, playbackRate: Double, startTime: Double, currentTime: Double, type: String, source: AnimationEffect? = null, cssId: String? = null)

Properties

cssId
Link copied to clipboard
val cssId: String? = null
A unique ID for Animation representing the sources that triggered this CSS animation/transition.
currentTime
Link copied to clipboard
val currentTime: Double
Animation's current time.
id
Link copied to clipboard
val id: String
Animation's id.
name
Link copied to clipboard
val name: String
Animation's name.
pausedState
Link copied to clipboard
val pausedState: Boolean
Animation's internal paused state.
playbackRate
Link copied to clipboard
val playbackRate: Double
Animation's playback rate.
playState
Link copied to clipboard
val playState: String
Animation's play state.
source
Link copied to clipboard
val source: AnimationEffect? = null
Animation's source animation node.
startTime
Link copied to clipboard
val startTime: Double
Animation's start time.
type
Link copied to clipboard
val type: String
Animation type of Animation.

Sources

jvm source
Link copied to clipboard